library(pins)c("penguins"="https://colorado.rstudio.com/rsc/example_pin/") %>%board_url() %>%pin_read("penguins")# Identify the boardboard <-board_url(c("penguins"="https://colorado.rstudio.com/rsc/example_pin/"))# Read the shared databoard %>%pin_read("penguins")
Expand
library(pins)board2 <-board_temp(versioned =TRUE)board2 %>%pin_write(1:5, name ="x", type ="rds")board2 %>%pin_write(2:6, name ="x", type ="rds")board2 %>%pin_write(3:7, name ="x", type ="rds")# see all versionsboard2 %>%pin_versions("x")